home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-08-18 | 727 b | 23 lines | [TEXT/TEXX] |
- /* Shutdown.exec */
- say 'Shutdown.exec';
- say 'Date of last change - 08/18/92';
- address finder;
- if rc = 0 then
- do /* Address successfull */
- /* If MS Word temp files exist, move them to the trash */
- /* Set up a path to the system folder */
- path BootDrive() || 'system folder';
- do i = 1 to 4
- if FileExists( 'Word Temp ' || i ) then
- Move Selection 'Word Temp ' || i 0 0 BootDrive() || 'Trash';
- end;
- /* now empty the trash */
- empty trash;
- if rc <> 0 then
- say 'Profile.exec -- Empty Trash failed';
- end;
- else /* Address failed, inform user */
- say 'Shutdown.exec -- Address finder failed';
- /* insert other commands here */
- say 'End of Shutdown.exec';
-